@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');




body {
    margin: 0;
    font-family: Arial, sans-serif;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Logo styling */
.logo-img {
    height: 50px;
}

/* Menu icon for mobile devices */
.menu-icon {
    display: none;
    font-size: 1.5em;
    color: black;
    cursor: pointer;
}

/* Navigation links styling */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: black;
    text-decoration: none;
    padding: 6px 8px;
    display: block;
    font-size: 14px;
}

.nav-links a:hover,
.dropdown:hover .dropbtn {
    background-color: #d7e5fc;
}

/* Dropdown menu styling */
.dropdown {
    position: relative;
}

.dropdown-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    margin-left: -15px;
}

.dropdown-menu {
    max-height: 600px;
    overflow-y: auto;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 40vw;
    z-index: 1;
    margin-left: -300px;
}

.dropdown-content ul {
    list-style-type: none;
    padding: 2px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.dropdown-content li {
    color: black;
    font-size: 12px;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.button-container {
    text-align: center;
    margin-right: 5px;
}

.round-button {
    background-color: transparent;
    border: 2px solid #ff8e2b;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 16px;
    color: #ff8e2b;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.round-button:hover {
    background-color: #ff8e2b;
    color: #fff;
    border-color: #fff;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }

    .menu-icon {
        display: block;
        margin-left: auto; /* Align to the right */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 0;
        padding: 10px 0;
        border-radius: 0;
        z-index: 1000; /* Ensure it is above other content */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        color: white;
        padding: 10px;
    }

    .dropdown-content {
        display: none;
        position: static;
        margin-left: 0;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .nav-links .dropdown-content {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        box-shadow: none;
    }

    .dropdown-content ul {
        display: block;
    }

    .dropdown-content li {
        text-align: left;
    }

    .dropdown-content a {
        color: white;
    }

    .button-container {
        text-align: center;
        margin-right: -20px;
    }
}

footer {
    background-color: #0d2137;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 150px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.footer-section {
    margin: 0 20px;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: darkorange;
    font-weight: bold;
    text-align: center;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section p {
    margin: 5px 0;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: darkorange;
    color: white;
}

.footer-bottom p {
    margin: 0;
}

.social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 9px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        
        text-align: left;
    }
    .footer-section {
        margin: auto;
    }
    .social-icons {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    .social-icons img {
        margin-right: 10px;
    }
    .hide-on-small-devices {
        display: none;
    }
    .footer-section h4 {
        text-align: left;
    }
}

body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 300px;
            height: 400px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
        }

        .chatbot-header {
            background-color: #f5f5f5;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #ddd;
        }

        .chatbot-header h4 {
            margin: 0;
            font-size: 16px;
        }

        .chatbot-close {
            background: none;
            border: none;
            color: black;
            font-size: 16px;
            cursor: pointer;
        }

        .chatbot-body {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .chatbot-messages {
            flex: 1;
            overflow-y: auto;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .chatbot-messages div {
            margin: 5px 0;
        }

        .chatbot-messages .user-message {
            text-align: right;
        }

        .chatbot-messages .bot-message {
            text-align: left;
            color: #007bff;
        }

        #chatbot-input {
            padding: 10px;
            border: none;
            border-top: 1px solid #ddd;
            outline: none;
            width: calc(100% - 70px);
        }

        button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
        }

        .chatbot-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            margin: 0;
            z-index: 1001;
        }

        .chat-icon {
            width: 60px;
            height: 60px;
            border-radius: 50px;
        }

        @media (max-width: 768px) {
            .chatbot-container {
                width: 90%;
                height: 60%;
                bottom: 10px;
                right: 10px;
            }
            #chatbot-input {
                width: calc(100% - 60px);
            }
        }

        @media (max-width: 480px) {
            .chatbot-container {
                width: 90%;
                height: 60%;
                bottom: 0;
                right: 0;
                border-radius: 10px;
            }
            .chat-icon {
                width: 50px;
                height: 50px;
            }
        }
.getit-btn {
    background-color: #caf0f8;
    border-radius: 50px;
    color: #00b4d8;
    border-width: 2px;
    font-size: 16px;
    border-color: #00b4d8;
    margin-left: 20px;
}
.container{
    margin-bottom: 4vh;

}

.overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1vh;
}
.overview-heading {
    font-weight: bold;
    font-size: 40px;
    margin-top: 5vh;
    padding-left: 25px;
    background: linear-gradient(to right, #100357 0%, #FF5711 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.overview-p {
    font-size: 16px;
    padding: 30px;
    text-align: justify;
}
.overview-container {
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
}
.home-btn {
    background-color: #FEEEE8;
    border-radius: 50px;
    color: #F85406;
    outline-color: darkblue;
    border-width: 2px;
    margin-left: 30px;
    font-size: 16px;
    border-color: #F85406;
}
.benefits-heading {
    font-weight: bold;
    font-size: 40px;
    padding: 10px;
    text-align: center;
    background: linear-gradient(to right, #100357 30%, #FF5711 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}
.ben-p {
    font-size: 16px;
    padding: 5px;
    text-align: justify;
}
/* Service Box Styles */
.bi_service_bx {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bi_service_bx:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Service Box Header Styles */
.bi_service_bx_head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff; /* Border for heading */
    padding-bottom: 10px;
}

.bi_service_bx_head img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.bi_service_bx_head h4 {
    margin: 0;
    padding-left: 15px;
    font-size: 22px;
    color: #333;
    border-left: 5px solid #007bff; /* Left border for heading */
    padding-left: 10px; /* Padding to separate text from border */
}

/* Paragraph Styles */
/* Service Box Styles */
.bi_service_bx {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.bi_service_bx:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Service Box Header Styles */
.bi_service_bx_head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff; /* Bottom border for heading */
}

.bi_service_bx_head img {
    width: 60px; /* or any desired width */
    height: 60px; /* or any desired height */
    object-fit: contain; /* Maintain the aspect ratio and avoid clipping */
    border-radius: 0; /* Ensure no rounded corners */
    margin-right: 10px;
}

.bi_service_bx_head h4 {
    margin: 0;
    padding-left: 15px;
    font-size: 22px;
    color: #333;
    flex-grow: 1; /* Allow heading to take remaining space */
}

/* Paragraph Styles */
.bi_service_bx p {
    padding: 10px;
    border: 1px solid #e0e0e0; /* Border for paragraph */
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-top: 15px;
    text-align: justify;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .bi_service_bx {
        padding: 15px;
        margin: 15px 0;
    }

    .bi_service_bx_head {
        flex-direction: row; /* Ensure the image and heading stay in a row */
        align-items: center;
    }

    .bi_service_bx_head img {
        width: 50px;
        height: 50px;
    }

    .bi_service_bx_head h4 {
        padding-left: 10px; /* Adjust padding for better spacing on small devices */
        margin-top: 0;
        font-size: 20px;
    }

    .bi_service_bx p {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .bi_service_bx {
        padding: 10px;
        margin: 10px 0;
    }

    .bi_service_bx_head img {
        width: 40px;
        height: 40px;
    }

    .bi_service_bx_head h4 {
        font-size: 18px;
        padding-left: 8px; /* Further adjust padding for very small devices */
    }

    .bi_service_bx p {
        padding: 6px;
    }
}

.card-container {
    display: grid;
    gap: 14px;
    padding: 10px;
    /*background-color: orange;*/
    margin-top: 20px;
    border-radius: 10px;
}

.cards {
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(255, 140, 0, 0.5), 0 6px 20px rgba(255, 120, 0, 0.5);

}

.s-card {
    height: 220px;
}
.who-heading {

    font-weight: bold;
    font-size: 40px;
    padding: 25px;
    text-align: center;
    background: linear-gradient(to right, #100357 30%, #FF5711 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}
.card-p {
            font-weight: bold;
            font-size: 14px;
            text-align: center;
            margin-top: 8px;
        }

.cards h2 {
    margin-top: 0;
    font-weight: bold;
    font-size: 45px;
    padding: 5px;
    text-align: center;
    background: linear-gradient(to right, #100357 30%, #FF5711 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 599px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 1199px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(6, 1fr);
    }
}



.solution_section {
    padding: 50px 0;
}

.bi_solution_bx {
    background: #fff; /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure all boxes stretch to full height */
    position: relative; /* Position relative for absolute positioning of span */
}

.bi_solution_bx:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.bi_solution_bx_head {
    position: relative;
}

.bi_solution_bx_head h4 {
    font-size: 1.5rem;
    background: linear-gradient(to right, #100357 40%, #FF5711 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.bi_solution_bx_head h4 span {
    background: #100357; 
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    top: 0;
    right: 0; /* Adjust to move span to top-right corner */
    font-size: 1rem;
}

.bi_solution_bx p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666; /* Adjust as needed */
    flex: 1; 
    text-align: justify;
}

@media (max-width: 991px) {
    .bi_solution_bx_head h4 span {
        right: 10px; /* Adjust positioning for medium screens */
    }
}

@media (max-width: 767px) {
    .bi_solution_bx_head h4 {
        font-size: 1.2rem;
    }
    .bi_solution_bx_head h4 span {
        right: 10px; /* Adjust positioning for small screens */
        font-size: 0.9rem;
    }
}
.col-lg-4, .col-md-6 {
    padding: 15px; /* Space between columns */
}

.overview-con {
    display: flex;
    max-width: 90vw; /* 90% of the viewport width */
    width: 100%; /* Full width of its container */
    justify-content: space-between;
    align-items: center;
    margin-top: 1vh;
    padding: 2vh; /* Adjusted padding for consistency */
    border-radius: 20px;
    background-color: #9c5525;
}
.get-btn {
    background-color: transparent;
    border-radius: 50px;
    color: white;
    border-width: thin;
    font-size: 16px;
    border-color: white;
    margin-left: 20px;
    border-style: solid;
}

.overvie-heading {
    font-weight: bold;
    font-size: 40px;
    margin-top: 5vh;
    padding-left: 25px;
    color: white;
}

.overvie-p {
    font-size: 16px;
    padding: 30px;
    text-align: justify;
    color: white;
}
.col-btn {
    background-color: #caf0f8;
    border-radius: 50px;
    color: #00b4d8;
    border-width: 2px;
    font-size: 16px;
    border-color: #00b4d8;
    border-style: solid;
}
.box1, .box2, .box3, .box4, .box5, .box6 {
    border-radius: 20px;
    margin: 10px; 
}

.box1 {
    background-color: #fcd1b6;
}

.box2 {
    background-color: lightgray;
}

.box3 {
    background-color: lightpink;
}

.box4 {
    background-color: #bcf7d9;
}

.box5 {
    background-color: #dab6fc;
}

.box6 {
    background-color: #fadf93;
}
.box1 p, .box2 p, .box3 p, .box4 p, .box5 p, .box6 p{
    text-align: justify;
}

.var-container {
    display: grid;
    gap: 1px; /* Space for the grid lines */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto-fit, minmax(100px, auto)); /* Adjust as needed */
}

/* For mobile devices (less than 600px) */
@media (max-width: 600px) {
    .var-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto-fit, minmax(100px, auto)); /* Adjust as needed */
    }
}

/* For medium to large devices (600px and up) */
@media (min-width: 600px) {
    .var-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto-fit, minmax(100px, auto)); /* Adjust as needed */
    }
}

/* For large devices (1024px and up) */
@media (min-width: 1024px) {
    .var-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(auto-fit, minmax(100px, auto)); /* Adjust as needed */
    }
}

.item {
    text-align: center;
    background: #fff; /* Background color of items */
    border: 1px solid #ddd; /* Thin border for items */
    padding: 10px; /* Add padding to create space around the content */
}

.item img {
    max-width: 60px;
    height: auto;
    padding-top: 5px;
}

.item h2 {
    margin-top: 10px;
    font-size: 16px;
}


.accordian-boxed {
    position: relative;
}




.accordian-boxed h2 span,
.accordian-boxed h3 span {
    color: #fa4a04;
}

.accordion-box {
    position: relative;
}

.accordion-box .block {
    position: relative;
    margin-bottom: 10px;
    border: 1px solid #d2d2d2;
    background-color: #fffafa;
    border-radius: 30px;
    overflow: hidden; /* Ensure content doesn’t overflow */
}

.accordion-box .block .acc-btn {
    font-size: 15px;
    cursor: pointer;
    line-height: 30px;
    color: #545454;
    font-weight: 400;
    background: #fff;
    padding: 7px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s ease, color 0.5s ease;
}

.accordion-box .block .acc-btn.active {
    color: #fff;
    background: #ff4800;
}

.accordion-box .block .acc-btn i {
    transition: transform 0.5s ease;
}

.accordion-box .block .acc-content {
    max-height: 0; /* Start with content hidden */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-box .block .acc-content.current {
    max-height: 200px; /* Adjust as needed */
}

.accordion-box .block .content {
    padding: 15px 30px;
}

.accordion-box .block .content .text {
    line-height: 1.8em;
    color: #000;
    text-align: justify;
}

.accordion-box .block .content p:last-child {
    margin-bottom: 0;
}

.text,
p {
    line-height: 1.8em;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}
.t-container {
    width: 90%;
    margin: auto;
}

.section {
    margin-bottom: 30px;
}

.text{
     style="max-height: 80px; 
     overflow-y: auto;"
}

.side-heading {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #1c4267;
    text-align: center;
}

.cells {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 10px;
    border: thin solid #1c4267;
    padding: 10px;
    justify-content: center; /* Center align items */
}

.cell {
    flex: 1 1 calc(17% - 20px); /* 5 items per row with gaps */
    box-sizing: border-box;
    text-align: center;
}

.cell img {
    width: auto;
    height: 80px;
    display: block;
    margin: 0 auto 5px; /* Center align image and add margin */
}

.cell p {
    margin: 0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cell {
        flex: 1 1 calc(50% - 10px); /* 2 items per row */
    }
}

@media (max-width: 480px) {
    .cell {
        flex: 1 1 100%; /* 1 item per row */
    }
}